UserProfileStats.tsx 1.1 KB

12345678910111213141516171819202122232425262728
  1. import { CalendarCheck, Flame } from 'lucide-react';
  2. import { UserProfileDto } from '@/types/account/profile';
  3. type Props = {
  4. profile: UserProfileDto;
  5. };
  6. export default function UserProfileStats({ profile }: Props) {
  7. return (
  8. <section className="user-profile__stats" aria-label="회원 활동 통계">
  9. <div className="user-profile__stat">
  10. <CalendarCheck size={20} className="user-profile__stat-icon user-profile__stat-icon--attendance" strokeWidth={1.75} />
  11. <div className="user-profile__stat-body">
  12. <span className="user-profile__stat-label">출석 수</span>
  13. <span className="user-profile__stat-value">{profile.attendanceCount.toLocaleString()}일</span>
  14. </div>
  15. </div>
  16. <div className="user-profile__stat">
  17. <Flame size={20} className="user-profile__stat-icon user-profile__stat-icon--streak" strokeWidth={1.75} />
  18. <div className="user-profile__stat-body">
  19. <span className="user-profile__stat-label">개근 일수</span>
  20. <span className="user-profile__stat-value">{profile.consecutiveDays.toLocaleString()}일</span>
  21. </div>
  22. </div>
  23. </section>
  24. );
  25. }